You can use `useAuthenticator` hook to access current signed in `user`. If no user is authenticated, it'll return `undefined`. ```tsx{1,4,8-9} import { useAuthenticator } from '@aws-amplify/ui-react'; const Home = () => { const { user, signOut } = useAuthenticator((context) => [context.user]); return ( <>